f11c4ddf923d3af5ed81a79c934bbf652a5a8555,symja_android_library/matheclipse-core/src/main/java/org/matheclipse/core/expression/AbstractFractionSym.java,AbstractFractionSym,times,#IExpr#,611

Before Change


			return this.mul(valueOf(((IntegerSym) that).fIntValue));
		}
		if (that instanceof BigIntegerSym) {
			return this.mul(valueOf(((BigIntegerSym) that).fBigIntValue));
		}
		if (that instanceof ComplexSym) {
			return ((ComplexSym) that).multiply(ComplexSym.valueOf(this));

After Change


			return this.mul(valueOf(((IntegerSym) that).fIntValue)).normalize();
		}
		if (that instanceof BigIntegerSym) {
			return this.mul(valueOf(((BigIntegerSym) that).fBigIntValue)).normalize();
		}
		if (that instanceof ComplexSym) {
			return ((ComplexSym) that).multiply(ComplexSym.valueOf(this)).normalize();